home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / Item Class / Item headers / CUGDragDropTask.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-30  |  628 b   |  29 lines  |  [TEXT/KAHL]

  1. /*
  2.  * File:        CUGDragDropTask.c
  3.  * Created:        8/16/93
  4.  * Desc:        A mousetask that handles dragging and dropping
  5.  *                in CItemTable.
  6.  *
  7.  * Superclass:    CDragDropTable.
  8.  * Uses:        CItemTable, CItem.
  9.  * Original Author:    W. Wesley Monroe
  10.  * Modifications:    
  11.  *
  12.  * Copyright © 1993 Wacko Software Production. All rights reserved.
  13.  */
  14.  
  15. #pragma once
  16.  
  17. #include "CDragDropTableTask.h"
  18.  
  19. class CUGDragDropTask : public CDragDropTableTask {
  20.  
  21. public:
  22.  
  23.     void IUGDragDropTask(CTable *aTable, CView *dragBoundsView,
  24.                             short theModifiers,
  25.                             long selFlags);
  26.  
  27.     virtual void EndTracking(LongPt *currPt, LongPt *prevPt, LongPt *startPt);
  28.  
  29. };